home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
201-225
/
219
/
deepsky
/
sac50.zoo
/
pc-install.arc
/
INSTALL.BAT
next >
Wrap
DOS Batch File
|
1989-05-15
|
1KB
|
52 lines
echo off
rem This program uses ARCE.COM to unarc the SAC50 files
cls
if "%2" == "" goto oops1
if "%1" == "" goto oops1
if "%1" == "a:" goto flopy
if "%1" == "A:" goto flopy
if "%1" == "B:" goto flopy
if "%1" == "b:" goto flopy
goto hardd
:oops1
echo This program needs 2 parameters
echo The Syntax is:
echo INSTALL [input_path] [output_path]
goto end
:flopy
echo Put the diskette with SAC50A.ARC in %1
pause
arce %1\sac50a %2
cls
echo Put the diskette with SAC50B.ARC in %1
pause
arce %1\sac50b %2
cls
echo Put the diskette with SAC50C.ARC in %1
pause
arce %1\sac50c %2
cls
echo Put the diskette with SAC50D.ARC in %1
pause
arce %1\sac50d %2
cls
echo Put the diskette with SAC50E.ARC in %1
pause
arce %1\sac50e %2
goto last
:hardd
arce %1\sac50? %2
:last
cls
if "%2" == "a:" goto end
if "%2" == "b:" goto end
echo Now appending the separate files into one large file.
copy %2\sac50b.txt+%2\sac50c.txt+%2\sac50d.txt+%2\sac50e.txt %2\sac50.txt
:end